Output is
….
3
Pointer Assignment
Ex.5300
int i=1, *j, *k;
j = &i;
*j = 2;
i = *j + 1;
k = &i;
cout << *k;